home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Games / NeXTmj / Source / GameBoardView.h < prev    next >
Text File  |  1991-03-18  |  864b  |  38 lines

  1.  
  2. /* Generated by Interface Builder */
  3.  
  4. /*
  5.  * This object is a view where the game's tiles are displayed.
  6.  *    It is commonly referenced as the Game Board.
  7.  *
  8.  * This object has only one method, drawSelf::.  In this method
  9.  *    the view is painted white and the interface object is
  10.  *    instructed to composite the game tiles.
  11.  *
  12.  $Author$
  13.  $Header$
  14.  *
  15.  $Log$
  16.  */
  17.  
  18.  
  19. #import "InterfaceView.h"
  20.  
  21. @interface GameBoardView:InterfaceView {
  22.  
  23. }
  24.  
  25.  
  26.                                                 // As a subclass of Responder, this object
  27.                                                 //    overrides the mouseDown: method such
  28.                                                 //    that click: and doubleClick: methods
  29.                                                 //    can be sent to the interface object.
  30. - mouseDown:( NXEvent* )theEvent;
  31.                                                 // This object paints itself which and 
  32.                                                 //    informs the interface object to draw
  33.                                                 //    the tiles.
  34. - drawSelf:(const NXRect *)rects :(int)rectCount;
  35.  
  36.  
  37. @end
  38.